home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / BPC-TRTL.ZIP / SYSTEM.ASM < prev    next >
Assembly Source File  |  1995-05-30  |  294b  |  15 lines

  1. .model small
  2. .code
  3.  
  4. public HaltError, HaltTurbo
  5. extrn _Vars:abs, _Consts:abs ; We need 2 ensure th@ vars & consts R linked in
  6.  
  7. HaltError:
  8. HaltTurbo:
  9. mov  ax,4C00h+_Vars-_Vars ; C00l, eh?
  10. int  21h
  11.  
  12. dw   _Consts ; This trick doesn't work with consts, we lose two bytes here :(
  13.  
  14. end
  15.